home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
ISSUE05
/
CLINIC
/
LISTING2.PAS
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1995-12-07
|
264 b
|
13 lines
if Stretch then begin
Bmp := TBitmap.Create;
try
Bmp.Height := Picture.Height;
Bmp.Width := Picture.Width;
Bmp.Canvas.Draw(0, 0, Picture.Graphic);
inherited Canvas.StretchDraw(Dest, Bmp);
finally
Bmp.Free;
end;
end
else